home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
wayfset.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
868b
|
22 lines
/* RCSVER $Id: wayfset.sql,v 1.2 2000-05-08 15:27:32-05 randy Exp $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: wayfset.sql
* Date: 05/24/1999
* memo: Randy Wood
* Description: Create the wayfset table. This table contains setup data
* for a fareset used in the wayfarer unit.
* Changes:
************************************************************************* */
CREATE TABLE wayfset
(
fareset_id NUMBER(38), /* Fareset */
mcv_file VARCHAR2(25), /* Config file for wayfarer */
version NUMBER(38), /* Version of mcv file */
config_num NUMBER(38)
CONSTRAINT ref_wayfset REFERENCES configset(num)
ON DELETE CASCADE,
CONSTRAINT pk_wayfset PRIMARY KEY (fareset_id, config_num)
);